@charset "UTF-8";
h2 {
  margin: 20px auto;
}

.calendar-all {
  background-color: #ffffff;
  width: 95%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1px 0;
  color: #000000;
}
.calendar-all > div {
  min-width: 300px;
  margin: 15px auto 5px;
}
@media (min-width: 1280px) {
  .calendar-all > div {
    margin: 30px auto 20px;
  }
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.calendar-top .month-display {
  background-color: #ffffff;
  border-radius: 5px;
  border: solid 3px #ffa500;
}

#prevMonth,
#nextMonth,
#month {
  display: inline-block; /* ボタンを横並びにする */
  border: none; /* 枠線をなくす */
  padding: 10px 15px; /* ボタンの内側の余白 */
  text-align: center; /* ボタンのテキストを中央揃えにする */
  text-decoration: none; /* テキストに下線をつけない */
  font-size: 14px;
  background-color: #ffffff;
  cursor: pointer; /* マウスポインタを変更する */
  vertical-align: baseline;
  transition: all 0.5s;
  box-sizing: border-box;
}
@media (min-width: 1280px) {
  #prevMonth,
  #nextMonth,
  #month {
    font-size: 20px;
  }
}
#prevMonth:hover,
#nextMonth:hover,
#month:hover {
  background-color: #eeeeee;
}

#month {
  position: relative;
  font-size: 20px;
}
@media (min-width: 1280px) {
  #month {
    font-size: 28px;
  }
}

#nextMonth::after,
#prevMonth::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: #000000;
  display: inline-block;
  vertical-align: middle;
}

#prevMonth::before {
  margin-right: 10px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

#nextMonth::after {
  margin-left: 10px;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.wp-admin #calendar tbody td,
.page-template-page-reservation-setting #calendar tbody td {
  height: 100px;
}

#result {
  width: 95%;
  max-width: 600px;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #cff;
  color: #000;
  border-radius: 10px;
}

#calendar select {
  text-align: center;
}
#calendar table {
  background-color: #ffffff;
  border-collapse: collapse;
  text-align: center;
}
#calendar tbody td,
#calendar tbody th,
#calendar thead td,
#calendar thead th {
  border-collapse: collapse;
  border: solid 4px transparent;
  box-sizing: border-box;
  text-align: center;
  vertical-align: top;
  color: #000000;
  font-size: 16px;
  width: 85px;
  /* 予約あり: ライトイエロー */
  /* 満室: ライトレッド */
}
@media (min-width: 1280px) {
  #calendar tbody td,
  #calendar tbody th,
  #calendar thead td,
  #calendar thead th {
    font-size: 24px;
  }
}
#calendar tbody td div,
#calendar tbody th div,
#calendar thead td div,
#calendar thead th div {
  padding: 6px 0px;
  background-color: #efefef;
  cursor: default;
  position: relative;
}
@media (min-width: 1280px) {
  #calendar tbody td div,
  #calendar tbody th div,
  #calendar thead td div,
  #calendar thead th div {
    padding: 20px 0px;
  }
}
#calendar tbody td div > span,
#calendar tbody th div > span,
#calendar thead td div > span,
#calendar thead th div > span {
  display: block;
  font-size: 12px;
  height: 1em;
  color: #ff0000;
}
#calendar tbody td div > span.white,
#calendar tbody th div > span.white,
#calendar thead td div > span.white,
#calendar thead th div > span.white {
  color: #ffffff;
}
#calendar tbody td:first-child div,
#calendar tbody th:first-child div,
#calendar thead td:first-child div,
#calendar thead th:first-child div {
  background-color: #fdeff5;
}
#calendar tbody td:last-child div,
#calendar tbody th:last-child div,
#calendar thead td:last-child div,
#calendar thead th:last-child div {
  background-color: #eaeff9;
}
#calendar tbody td.gry,
#calendar tbody th.gry,
#calendar thead td.gry,
#calendar thead th.gry {
  color: #949495;
}
#calendar tbody td.today div,
#calendar tbody th.today div,
#calendar thead td.today div,
#calendar thead th.today div {
  border: solid 1px #000000;
}
#calendar tbody td.old div,
#calendar tbody th.old div,
#calendar thead td.old div,
#calendar thead th.old div {
  background-color: #ebaca5;
}
#calendar tbody td.holiday div,
#calendar tbody th.holiday div,
#calendar thead td.holiday div,
#calendar thead th.holiday div {
  background-color: #de766a;
}
#calendar tbody td select,
#calendar tbody th select,
#calendar thead td select,
#calendar thead th select {
  font-size: 12px;
  display: block;
  margin: 0 auto;
  margin-top: 0px;
  padding: 4px;
  margin-top: 3px;
  /* 予約あり: ライトイエロー */
  /* 満室: ライトレッド */
}
#calendar tbody td select .reserved,
#calendar tbody th select .reserved,
#calendar thead td select .reserved,
#calendar thead th select .reserved {
  background-color: #fff3cd;
}
#calendar tbody td select .full,
#calendar tbody th select .full,
#calendar thead td select .full,
#calendar thead th select .full {
  background-color: #de766a;
}
@media (max-width: 640px) {
  #calendar tbody td,
  #calendar tbody th,
  #calendar thead td,
  #calendar thead th {
    border: solid 4px transparent;
  }
  #calendar tbody td select,
  #calendar tbody th select,
  #calendar thead td select,
  #calendar thead th select {
    font-size: 8px;
    font-size: 10px;
    padding: 1px;
  }
}
#calendar tbody td.reserved div,
#calendar tbody th.reserved div,
#calendar thead td.reserved div,
#calendar thead th.reserved div {
  background-color: #fff3cd;
}
#calendar tbody td.full div,
#calendar tbody th.full div,
#calendar thead td.full div,
#calendar thead th.full div {
  background-color: #de766a;
}
#calendar tbody td .white,
#calendar tbody th .white,
#calendar thead td .white,
#calendar thead th .white {
  color: #ffffff;
}
#calendar tbody td span,
#calendar tbody th span,
#calendar thead td span,
#calendar thead th span {
  width: 100%;
  height: 100%;
}
#calendar tbody td input,
#calendar tbody th input,
#calendar thead td input,
#calendar thead th input {
  display: none;
}
#calendar thead td,
#calendar thead th {
  font-weight: normal;
}
#calendar thead td:first-child,
#calendar thead th:first-child {
  color: #db5351;
}
#calendar thead td:last-child,
#calendar thead th:last-child {
  color: #0076a4;
}
#calendar thead div {
  cursor: pointer;
}
#calendar tbody td,
#calendar tbody th {
  font-weight: 600;
}
#calendar tbody .set div {
  background-color: #d04255;
}

.savebutton button {
  width: 100%;
  border-radius: unset;
  background-color: #1831e5;
  padding: 4px;
  border: solid 1px #ffffff;
  color: #fff;
  font-size: 16px;
  transition: all 0.5s;
}
.savebutton button:first-child {
  margin-bottom: 2px;
}
.savebutton button:hover {
  color: #1831e5;
  background-color: #ffffff;
  border: solid 1px #1831e5;
}

.checkbox-label {
  margin-right: 10px; /* チェックボックスとラベルの間のスペースを調整 */
}

.week input[type=checkbox] {
  border-radius: unset;
}

#term {
  padding-bottom: 20px;
  margin-bottom: 20px;
  background-size: 8px 1px;
  background-image: linear-gradient(to right, #aaa, #aaa 5px, transparent 2px, transparent 8px);
  background-position: left bottom;
  background-repeat: repeat-x;
}
#term .select-box {
  border: solid 1px #000000;
  padding: 0 7px;
}
#term .select-box select {
  border: none;
  direction: rtl;
  transition: all 0.5s;
}
#term .select-box select:hover {
  background-color: #c6c6c6;
}
#term .select-box select option {
  background: #ffffff;
}
#term .select-box select option:hover {
  background-color: #c6c6c6;
}

.page-template-page-reservation-setting #term .select-box select {
  padding: 7px 2px;
}

#preparationForm select {
  transition: all 0.5s;
}
#preparationForm select:hover {
  background-color: #c6c6c6;
}
#preparationForm select option {
  background: #ffffff;
}
#preparationForm select option:hover {
  background-color: #c6c6c6;
}

.dropdown {
  position: absolute;
  z-index: 10;
  width: 300px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-top: 0.3rem;
  background: white;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.5, 1);
  transform: translateY(0.5rem);
  visibility: hidden;
  opacity: 0;
}
.dropdown .MiniCalendar-Year {
  display: flex;
}
.dropdown .MiniCalendar-Year button {
  width: 60%;
  border: none; /* 枠線をなくす */
  padding: 10px 0; /* ボタンの内側の余白 */
  text-align: center; /* ボタンのテキストを中央揃えにする */
  text-decoration: none; /* テキストに下線をつけない */
  font-size: 14px; /* テキストのフォントサイズ */
  background-color: #cccccc;
  cursor: pointer; /* マウスポインタを変更する */
  vertical-align: baseline;
  transition: all 0.5s;
}
.dropdown .MiniCalendar-Year button:first-child, .dropdown .MiniCalendar-Year button:last-child {
  width: 20%;
}
.dropdown .MiniCalendar-Year button:hover {
  background-color: #eeeeee;
}
.dropdown .MiniCalendar-Year button.none-Year {
  background-color: #cccccc;
}
.dropdown .MiniCalendar {
  display: flex;
  flex-wrap: wrap;
}
.dropdown .MiniCalendar button {
  width: 100px;
  border: solid 0.5px #eeeeee; /* 枠線をなくす */
  padding: 10px 0; /* ボタンの内側の余白 */
  text-align: center; /* ボタンのテキストを中央揃えにする */
  text-decoration: none; /* テキストに下線をつけない */
  font-size: 14px; /* テキストのフォントサイズ */
  background-color: #ffffff;
  cursor: pointer; /* マウスポインタを変更する */
  vertical-align: baseline;
  transition: all 0.5s;
  height: 50px;
}
.dropdown .MiniCalendar button:hover {
  background-color: #eeeeee;
}
.dropdown .MiniCalendar button.none-Month {
  background-color: #bbbbbb;
}

.show {
  transform: translateY(0rem);
  visibility: visible;
  opacity: 1;
}

.color-flex {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.color-flex span {
  content: "";
  display: inline-block;
  width: 2em;
  height: 0.8em;
  vertical-align: middle;
  margin-right: 10px;
}
.color-flex div {
  margin: 0 20px;
}
.color-flex div:nth-child(1) span {
  background-color: #efefef;
  border: solid 0.5px #000000;
}
.color-flex div:nth-child(2) span {
  background-color: #fff3cd;
  border: solid 0.5px #000000;
}
.color-flex div:nth-child(3) span {
  background-color: #de766a;
}/*# sourceMappingURL=calendar.css.map */